summaryrefslogtreecommitdiff
path: root/tests/t.stage
blob: c97fe4f0e38c2b34f3fd3e1ee95c32a9d830d377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

situation <<start>>
{
	setup
	{
		display("Hi");
	}
	enter
	{
		display("start pre");
		goAhead();
		display("start post");
	}
}

function goAhead()
{
	display("goAhead() pre");
	goto( <<next>> );
	display("goAhead() post");
}

situation <<next>>
{
	enter
	{
		display("This is next.");
	}
}